Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
The pkg-conf npm package allows you to load configuration from the `package.json` file of your project. It helps in managing project-specific configurations in a centralized manner.
Load Configuration
This feature allows you to load configuration settings from the `package.json` file under a specific namespace (in this case, 'myApp'). The configuration is returned as a JavaScript object.
const pkgConf = require('pkg-conf');
(async () => {
const config = await pkgConf('myApp');
console.log(config);
})();
Default Values
You can provide default values for configuration settings. If the specified configuration is not found in the `package.json` file, the default values will be used.
const pkgConf = require('pkg-conf');
(async () => {
const config = await pkgConf('myApp', { default: 'value' });
console.log(config);
})();
Sync Loading
This feature allows you to load configuration settings synchronously. This can be useful in scenarios where asynchronous operations are not suitable.
const pkgConf = require('pkg-conf');
const config = pkgConf.sync('myApp');
console.log(config);
Cosmiconfig searches for and loads configuration files in various formats (JSON, YAML, JS, etc.). It is more flexible than pkg-conf as it supports multiple file formats and allows configuration files to be placed in different locations.
The rc package is used for loading configuration files in a variety of formats (JSON, INI, etc.) and from multiple sources (environment variables, command-line arguments, etc.). It provides more flexibility in terms of configuration sources compared to pkg-conf.
The config package provides a way to manage configuration files for different deployment environments. It supports hierarchical configurations and allows for environment-specific settings, which is more advanced compared to the simpler namespace-based approach of pkg-conf.
Get namespaced config from the closest package.json
Having tool specific config in package.json reduces the amount of metafiles in your repo (there are usually a lot!) and makes the config obvious compared to hidden dotfiles like .jshintrc
, which can end up causing confusion. XO, for example, use the xo
namespace in package.json, and ESLint uses eslintConfig
. Many more tools supports this, like AVA, Babel, nyc, etc.
$ npm install --save pkg-conf
{
"name": "some-package",
"version": "1.0.0",
"unicorn": {
"rainbow": true
}
}
const pkgConf = require('pkg-conf');
pkgConf('unicorn').then(config => {
console.log(config.rainbow);
//=> true
});
It walks up parent directories until a package.json
can be found, reads it, and returns the user specified namespace or an empty object if not found.
Returns a promise that resolves to the config.
Returns the config.
Type: string
The package.json namespace you want.
Type: string
Default: process.cwd()
Directory to start looking up for a package.json file.
Type: Object
Default config.
Pass in the config
returned from any of the above methods.
Returns the filepath to the package.json file or null
.
MIT © Sindre Sorhus
FAQs
Get namespaced config from the closest package.json
The npm package pkg-conf receives a total of 1,503,794 weekly downloads. As such, pkg-conf popularity was classified as popular.
We found that pkg-conf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.